SignalConcurrentQueue<T> Class Members
The following tables list the members exposed by SignalConcurrentQueue<T>.
Public Constructors
Name | Description | |
---|---|---|
![]() | SignalConcurrentQueue<T> Constructor |
Public Properties
Public Methods
Name | Description | |
---|---|---|
![]() | Enqueue | Adds an item to the end of the queue. |
![]() | TryDequeue | Attempts to pull an item from the front of the queue. |
Protected Methods
Name | Description | |
---|---|---|
![]() | OnEnqueued | Fires all handlers registered to the Enqueued event. |
![]() | OnTriedDequeue | Fires all handlers registered to the TriedDequeue event. |
Public Events
Name | Description | |
---|---|---|
![]() | Enqueued | Event that occurs whenever the user enqueues and item. |
![]() | TriedDequeue | Event that occurs whenever the user attempts to dequeue an item, regardless if it happened successfully or not. |
See Also